Xbasic

OBJECT.QUICKSRCHEXPLICIT Function

Syntax

.Quicksrchexplicit(c objectname [,l exclude ])

Arguments

objectname

The name of a field on the form.

exclude

Optional. Default = .F., .T. = Inverts the search by specifying that you want all records that do not match the current field value.

Description

Filters a form or browse based on the value in a field.

The <OBJECT>.QUICKSRCHEXPLICIT() method applies to:

Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)

Example

dim ptr as P
ptr = form.view("Customer Information")
ptr.QuickSortExplicit("lastname")

Limitations

Desktop applications only.

See Also